PinnedSachin Palasyncio — How to use Async/Await in Python.In this article, we gonna discuss how we can use async/await in Python?Jul 12, 20221Jul 12, 20221
Sachin PalinLevel Up CodingDifferent Ways to Stream Videos on the Frontend in FastAPIFastAPI is a fast and modern web framework known for its support for asynchronous REST API and ease of use.6h ago6h ago
Sachin PalDifference between eval and exec in PythonBoth functions have a common objective: to execute Python code from the string input or code object. Even though they both have the same…15h ago15h ago
Sachin Pal10 Useful yet Rarely Used OS Functions in PythonYou must have used functions provided by the os module in Python several times in your projects. These could be used to create a file, walk…4d ago4d ago
Sachin PalWhy Slash(/) and Asterisk(*) are Used in Functions?When you read the documentation of some functions you see a slash (/) and an asterisk (*) passed in the function definition. Why are they…Nov 4Nov 4
Sachin PalStuck with circular imports? Use these methods to avoid them…Have you ever come across circular imports in Python? Well, it’s a very common code smell that indicates something’s wrong with the design…Nov 2Nov 2
Sachin PalType Hints for Functions, Return Values, Variables, and More…Python is a dynamically typed language, meaning you do not need to specify the type of variables, parameters, or return values. This is…Oct 25Oct 25
Sachin PalEasy Way to Propagate Missing Values in a DatasetThe DataFrame.ffill() (forward fill) propagates missing or NaN values using the previous valid value in a column or row, while…Oct 23Oct 23
Sachin PalDisabling GIL Easily in Python3.13The official version of Python 3.13 has been released by the Python organization, and with this, you get many major changes.Oct 10Oct 10
Sachin Pal3 Essential Pandas Methods to Handle Missing ValuesPandas provide numerous functions and methods to clean and preprocess the dataset to make it production-ready.Sep 20Sep 20